home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / mail / transpor / ifmail23.z / ifmail23 / ifmail / ifgate / ftnmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-08  |  595 b   |  37 lines

  1. #ifndef _FTNMSG_H
  2. #define _FTNMSG_H
  3. #include "rfcmsg.h"
  4.  
  5. typedef struct _ftnmsg {
  6.     int flags;
  7.     faddr *to;
  8.     faddr *from;
  9.     char *date;
  10.     char *subj;
  11.     char *msgid;
  12.     char *reply;
  13.     char *origin;
  14.     char *area;
  15. } ftnmsg;
  16.  
  17. #define PVT 0x0001
  18. #define CRS 0x0002
  19. #define RCV 0x0004
  20. #define SNT 0x0008
  21. #define ATT 0x0010
  22. #define TRN 0x0020
  23. #define ORP 0x0040
  24. #define K_S 0x0080
  25. #define LOC 0x0100
  26. #define HLD 0x0200
  27. #define RSV 0x0400
  28. #define FRQ 0x0800
  29. #define RRQ 0x1000
  30. #define RRC 0x2000
  31. #define ARQ 0x4000
  32. #define FUP 0x8000
  33.  
  34. extern void tidy_ftnmsg(ftnmsg *);
  35. extern ftnmsg *mkftnhdr(rfcmsg *);
  36. #endif
  37.